projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95130f1
)
Use lisp type in log message (bug#28176)
author
Alan Third
<alan@idiocy.org>
Wed, 23 Aug 2017 20:13:22 +0000
(21:13 +0100)
committer
Alan Third
<alan@idiocy.org>
Wed, 23 Aug 2017 20:13:22 +0000
(21:13 +0100)
* src/nsimage.m (ns_load_image): Use make_number on index.
src/nsimage.m
patch
|
blob
|
history
diff --git
a/src/nsimage.m
b/src/nsimage.m
index 3c81dea67a90ddf0598970f53358f289174d4acb..ea2f1ec54acf70f40f86f7c33304e98604b39325 100644
(file)
--- a/
src/nsimage.m
+++ b/
src/nsimage.m
@@
-108,7
+108,8
@@
ns_load_image (struct frame *f, struct image *img,
if (![eImg setFrame: index])
{
- add_to_log ("Unable to set index %d for image %s", index, img->spec);
+ add_to_log ("Unable to set index %d for image %s",
+ make_number (index), img->spec);
return 0;
}